home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / Preferences / WindowDepth / Source / WindowDepth.h < prev    next >
Text File  |  1992-11-28  |  622b  |  44 lines

  1. /* Copyright (c) 1992 by NightShade Software.
  2.  *
  3.  * NAME
  4.  *     WindowDepth : Layout
  5.  *
  6.  * DESCRIPTION
  7.  *     A custom Preferences option for setting WindowDepthLimits.
  8.  *
  9.  * COMMENTS/PROBLEMS
  10.  *     ---
  11.  *
  12.  * AUTHOR/DATE CREATED
  13.  *     Gary Ritchie/November 24, 1992
  14.  *
  15.  * REVISIONS
  16.  *
  17.  */
  18.  
  19. #import <apps/Preferences.h>
  20. #import <appkit/appkit.h>
  21.  
  22.  
  23. @interface WindowDepth : Layout
  24. {
  25.     id window;
  26.     id browser;
  27.     id infoPanel;
  28.     
  29.     id defaultRadio;
  30.     id defaultSwitch;
  31.     
  32.     id appRadio;
  33.     id appSwitch;
  34. }
  35.   
  36.  
  37. + new;
  38. - rescanPrefs:sender;
  39. - itemSelected:sender;
  40. - setDefault:sender;
  41. - setApp:sender;
  42.  
  43. @end
  44.